1 /***
2 * Report
3 *
4 * This is the interface that all reporters
5 * are required to implement.
6 */
7
8 package junit.quilt.reports;
9
10 import java.io.OutputStream;
11 import java.io.IOException;
12
13 import junit.quilt.framework.QuiltRegistry;
14
15 public interface Report
16 {
17 public void writeReport( OutputStream out,
18 QuiltRegistry registry )
19 throws IOException;
20 }
This page was automatically generated by Maven